home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / tile / tiles.bas < prev    next >
BASIC Source File  |  1995-01-21  |  245b  |  12 lines

  1. Option Explicit
  2. '--------------------------------------------------
  3. ' TILES.BAS
  4. '--------------------------------------------------
  5.  
  6. ' data type used to store an x-y coordinate.
  7. Type tPoint
  8.     X As Integer
  9.     Y As Integer
  10. End Type
  11.  
  12.